projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6629e83
)
GtkScale: Properly chain up in GtkBuildableIface->custom_finished()
author
Tristan Van Berkom
<tristanvb@openismus.com>
Mon, 8 Apr 2013 12:04:50 +0000
(21:04 +0900)
committer
Tristan Van Berkom
<tristanvb@openismus.com>
Mon, 8 Apr 2013 12:18:47 +0000
(21:18 +0900)
This was causing <style> markup to be ignored when specified
on GtkScale types.
gtk/gtkscale.c
patch
|
blob
|
history
diff --git
a/gtk/gtkscale.c
b/gtk/gtkscale.c
index 1af2f538b09dd56a047bb6f1738d476326087c67..4f739d807992796a0581405466facdd3ecc90ccb 100644
(file)
--- a/
gtk/gtkscale.c
+++ b/
gtk/gtkscale.c
@@
-1903,4
+1903,10
@@
gtk_scale_buildable_custom_finished (GtkBuildable *buildable,
g_slist_free (marks_data->marks);
g_slice_free (MarksSubparserData, marks_data);
}
+ else
+ {
+ parent_buildable_iface->custom_finished (buildable, builder, child,
+ tagname, user_data);
+ }
+
}